#include <stdio.h>
int main ()	
{
	float r=1.5,h=3.7;
	float v= r*r*h*3.1416;
	printf ("The volume is %f",v); 
	return 0;
}

